86c5aef6b2db3ec59ae4bdbe7ca5941a2541cdca,src/java/edu/biu/scapi/interactiveMidProtocols/ot/privacyOnly/OTPrivacyOnlyDDHSenderAbs.java,OTPrivacyOnlyDDHSenderAbs,OTPrivacyOnlyDDHSenderAbs,#,96

Before Change


		try {
			//Create the default DlogGroup by the factory.
			dlog = DlogGroupFactory.getInstance().getObject(dlogName);
			System.out.println(dlog.getGroupType());
		} catch (FactoriesException e1) {
			// Should not occur since the dlog name in the configuration file is valid.
		}

After Change


		try {
			//Create the default DlogGroup by the factory.
			dlog = DlogGroupFactory.getInstance().getObject(dlogName);
            Logging.getLogger().log(Level.FINE, dlog.getGroupType());
		} catch (FactoriesException e1) {
			// Should not occur since the dlog name in the configuration file is valid.
		}